home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 16
/
CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso
/
CUCD
/
Utilities
/
Datatypes
/
acbm
/
classbase.i
< prev
next >
Wrap
Text File
|
1997-05-27
|
1KB
|
67 lines
;*
;*
;* $VER: classbase.i 1.1 (27.5.97)
;* acbm.datatype 1.1
;*
;* Header file for DataTypes class
;*
;* Written 1996/1997 by Roland 'Gizzy' Mainz
;* Original example source from David N. Junod
;*
;*
IFND CLASSBASE_I
CLASSBASE_I SET 1
;-----------------------------------------------------------------------
INCLUDE "exec/types.i"
INCLUDE "exec/libraries.i"
INCLUDE "exec/lists.i"
INCLUDE "exec/semaphores.i"
INCLUDE "utility/tagitem.i"
INCLUDE "intuition/classes.i"
;-----------------------------------------------------------------------
STRUCTURE ClassBase,ClassLibrary_SIZEOF
ULONG cb_SysBase
ULONG cb_UtilityBase
ULONG cb_DOSBase
ULONG cb_IFFParseBase;
ULONG cb_GfxBase
ULONG cb_IntuitionBase
ULONG cb_DataTypesBase
ULONG cb_SuperClassBase
ULONG cb_SegList
STRUCT cb_Lock,SS_SIZE
LABEL ClassBase_SIZEOF
;-----------------------------------------------------------------------
LIBINIT
LIBDEF _LVODispatch
;---------------------------------------------------------------------------
CALL MACRO <Function_Name>
xref _LVO\1
jsr _LVO\1(A6)
ENDM
;---------------------------------------------------------------------------
GO MACRO <Function_Name>
xref _LVO\1
jmp _LVO\1(A6)
ENDM
;---------------------------------------------------------------------------
ENDC ; CLASSBASE_I